home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1997 February / Software of the Month Club 1997 February.iso / pc / dos / edu / calc / readme.txt < prev    next >
Encoding:
Text File  |  1996-10-31  |  3.0 KB  |  84 lines

  1. 1. PURPOSE: What does this program do and what is it all about?
  2. ===============================================================
  3. In short:     numerical calculations, data processing,
  4.               graph generating, viewing, printing,
  5.               in-line calculator.
  6.  
  7. Frequently experimentally measured data is a set of
  8. N points written in a text file in two columns:
  9.   X1  Y1
  10.   X2  Y2
  11.   etc.,
  12.  
  13. which represents a real function Y of a real variable X. Let us call this
  14. object "a graph". The program "calc" allows one to do arithmetic and algebraic
  15. operations on graphs and real numbers: add graph+graph, convolute, etc. All
  16. operations are NUMERICAL. Calc also knows fitting, smoothing, interpolation,
  17. integrals, standard and some special functions, and much more.
  18.  
  19. Calc allows one to plot on a screen (EGA/VGA) and print on a PostScript
  20. Printer.
  21.  
  22. Calc works under DOS. It takes commands from a command line. Language is a
  23. simple algebra:
  24.  
  25.         calc a = b+sin(x)^3    etc.
  26.  
  27. where b,x and a are graphs/numbers (i.e. names of the files containing graphs)
  28. in the sense described above.
  29.  
  30. One can write programs doing numerical calculations and/or manipulating
  31. experimental data in batch files.
  32.  
  33. 2. INSTALLATION
  34. ===============
  35.  
  36. Usually, a distributed version is compiled for 286 processor with a math
  37. co-processor & EGA/VGA monitor and works under DOS. If your computer is
  38. different, (no math co-processor, etc.) a custom compiled version is available
  39. upon request.
  40.  
  41. How to find out, what version do you have?
  42. If your computer does not have a math co-processor, and calc gives obviously
  43. wrong answers like
  44.         calc 1+2
  45.                   1+2 = 10^24
  46. you need a version with float arithmetic emulation.
  47.  
  48. To install calc, put calc.exe in the path BEFORE WINDOWS.
  49. Example:
  50.         take a look into autoexec.bat:
  51.         if your path is
  52.                 path=C:\WINDOWS;C:DOS;C:\TOOLS;
  53.         make it:
  54.                 path=C:\TOOLS;C:\WINDOWS;C:DOS;
  55.         copy calc.exe into C:\TOOLS and reboot your computer.
  56.  
  57. 3. STATUS OF THE PROGRAM & DISTRIBUTION
  58. =======================================
  59. This program is a shareware. You can copy and distribute it freely as long
  60. as you distribute the whole original package which includes readme.txt file
  61. and all example files (*.bat).
  62.  
  63. Disclaimer:
  64. This program  is provided "as  is" without warranty  of any kind.  In no event
  65. shall author be liable for any loss  of profits, loss of business, loss of use
  66. or data,  interruption of business,  or for indirect,  special, incidental, or
  67. consequential damages of any kind, arising from any error in this program.
  68.  
  69. 4. HELP or How to Learn It
  70. ==========================
  71.    There are several batch files (*.bat) coming with it.
  72.    View them and run them.
  73.    The file helps.bat shows how to use help commands of calc.
  74.  
  75. 5. HOW TO CONTACT THE AUTHOR
  76. ===========================
  77. Questions/Suggestions/Problems?
  78.         contact Vladimir Kushnir: kushnir@aps.anl.gov
  79.  
  80.  
  81.  
  82.  
  83.  
  84.